dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlArray Structure / PgSqlArray Constructor / PgSqlArray Constructor(Object[],PgSqlType,Int32,Int32[])
An array of objects that contains the individual elements of PgSqlArray.
The type of elements in the array.
The number of dimensions.
Limits for the dimentsions.

In This Topic
    PgSqlArray Constructor(Object[],PgSqlType,Int32,Int32[])
    In This Topic
    Initializes a new instance of the PgSqlArray class with the specified elements, elements type, and dimensions.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal elements() As Object, _
       ByVal elementType As PgSqlType, _
       ByVal rank As Integer, _
       ByVal ParamArray dimensions() As Integer _
    )
    public PgSqlArray( 
       object[] elements,
       PgSqlType elementType,
       int rank,
       params int[] dimensions
    )

    Parameters

    elements
    An array of objects that contains the individual elements of PgSqlArray.
    elementType
    The type of elements in the array.
    rank
    The number of dimensions.
    dimensions
    Limits for the dimentsions.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also